docs: don't use itemizedlist
authorWilliam Jon McCann <william.jon.mccann@gmail.com>
Wed, 5 Feb 2014 00:33:43 +0000 (19:33 -0500)
committerWilliam Jon McCann <william.jon.mccann@gmail.com>
Wed, 5 Feb 2014 00:33:43 +0000 (19:33 -0500)
gtk/deprecated/gtkaction.c
gtk/deprecated/gtkuimanager.c

index be7c8e1daef34302f6d88fdf11aa69a2cfebe34a..5fe0946675651bc41c149091a0bd805366918fe7 100644 (file)
  *
  * As well as the callback that is called when the action gets activated,
  * the following also gets associated with the action:
- * <itemizedlist>
- *   <listitem><para>a name (not translated, for path lookup)</para></listitem>
- *   <listitem><para>a label (translated, for display)</para></listitem>
- *   <listitem><para>an accelerator</para></listitem>
- *   <listitem><para>whether label indicates a stock id</para></listitem>
- *   <listitem><para>a tooltip (optional, translated)</para></listitem>
- *   <listitem><para>a toolbar label (optional, shorter than label)</para></listitem>
- * </itemizedlist>
+ *
+ * - a name (not translated, for path lookup)
+ *
+ * - a label (translated, for display)
+ *
+ * - an accelerator
+ *
+ * - whether label indicates a stock id
+ *
+ * - a tooltip (optional, translated)
+ *
+ * - a toolbar label (optional, shorter than label)
+ *
+ *
  * The action will also have some state information:
- * <itemizedlist>
- *   <listitem><para>visible (shown/hidden)</para></listitem>
- *   <listitem><para>sensitive (enabled/disabled)</para></listitem>
- * </itemizedlist>
+ *
+ * - visible (shown/hidden)
+ *
+ * - sensitive (enabled/disabled)
+ *
  * Apart from regular actions, there are <link linkend="GtkToggleAction">toggle
  * actions</link>, which can be toggled between two states and <link
  * linkend="GtkRadioAction">radio actions</link>, of which only one in a group
@@ -852,14 +859,12 @@ disconnect_proxy (GtkAction *action,
  * 
  * Updates the visibility of @proxy from the visibility of @action
  * according to the following rules:
- * <itemizedlist>
- * <listitem><para>if @action is invisible, @proxy is too
- * </para></listitem>
- * <listitem><para>if @empty is %TRUE, hide @proxy unless the "hide-if-empty" 
+
+ * if @action is invisible, @proxy is too
+ *
+ * if @empty is %TRUE, hide @proxy unless the "hide-if-empty" 
  *   property of @action indicates otherwise
- * </para></listitem>
- * </itemizedlist>
- * 
+ *
  * This function is used in the implementation of #GtkUIManager.
  *
  * Deprecated: 3.10
index 53f87289e3aa27e7d8e70287408d43cc975cbe66..edad1b1bae8c55002c1f3ad1689f0af5f429f092 100644 (file)
  * impossible to know in advance whether they will end up empty after merging.
  * #GtkUIManager offers two ways to treat empty submenus:
  *
- * <itemizedlist>
- * <listitem>
- * <para>make them disappear by hiding the menu item they're attached to</para>
- * </listitem>
- * <listitem>
- * <para>add an insensitive "Empty" item</para>
- * </listitem>
- * </itemizedlist>
+ * - make them disappear by hiding the menu item they're attached to
+ *
+ * - add an insensitive "Empty" item
  *
  * The behaviour is chosen based on the "hide_if_empty" property of the action
  * to which the submenu is associated.